home *** CD-ROM | disk | FTP | other *** search
/ The Macintosh Demo Applications CD / Apple-MacintoshDemoApplicationsCD-1.0-1992.iso / More Information / QuicKeys / For Programmers Only.sea / Pascal Examples / SampleData.p < prev    next >
Text File  |  1991-06-22  |  1KB  |  36 lines

  1. {*    $Workfile$ *}
  2. {*    $Revision$ *}
  3.  
  4. {    QuicKeys sample extension key definition }
  5.  
  6. {    © 1990 CE Software, Inc.  All rights reserved.}
  7.  
  8. {    For QuicKeys 2 Extension Sample source code you have a royalty-free right }
  9. {    to include object code derived from this Sample source code in programs }
  10. {    that you develop.  You also have the right to use, distribute, and license }
  11. {    such programs to third parties without payment of any further license fees }
  12. {    to CE Software, Inc., so long as a copyright notice sufficient to protect }
  13. {    your copyright for your software in the United States or any other country; }
  14. {    is included in the graphic display of your software and on the labels }
  15. {    affixed to the media on which your software is distributed. }
  16.  
  17. {    WHEN    WHO        WHAT}
  18. {•••••}
  19. {    7/27    mkg        created file}
  20. {•••••}
  21.  
  22.  
  23. unit SampleData;
  24.  
  25. interface
  26.     uses
  27.         extensions;
  28.  
  29.     type
  30.         SampleDataRec = record
  31.                 hdr: ExtensionDataHeader;
  32.                 lWaitTime: longint;    { how long to wait before beeping }
  33.             end;
  34.  
  35. implementation
  36. end.